home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 November / november_2001.iso / Browsers / Netscape 6.1 / browser.xpi / bin / chrome / toolkit.jar / content / global / wizardOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-03-21  |  1002 b   |  23 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://global/locale/wizardOverlay.dtd">
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/wizardOverlay.css" type="text/css"?>
  6.  
  7. <overlay id="wizardOverlay"
  8.      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  9.  
  10.   <!-- Wizard Buttons -->
  11.    <box id="wizardButtons" align="horizontal">
  12.     <spring flex="100%"/>
  13.     <button class="dialog" id="wiz-cancel-button" label="&cancelButton.label;" oncommand="wizardManager.onCancel();" />
  14.     <spring flex="20%"/>
  15.     <button class="dialog" id="wiz-back-button" label="&backButton.label;" oncommand="wizardManager.onBack();" align="left" />
  16.     <button class="dialog right" id="wiz-next-button" label="&nextButton.label;" oncommand="wizardManager.onNext();" align="right" />
  17.     <spring flex="5%"/>
  18.     <button class="dialog" id="wiz-finish-button" label="&finishButton.label;" oncommand="wizardManager.onFinish();" />
  19.     <spring flex="5%"/>
  20.   </box>
  21.   
  22. </overlay>    
  23.